home *** CD-ROM | disk | FTP | other *** search
- @echo off
- goto Start
- :Help
- text
-
- ERROR -- Explanations of DOS error levels.
-
- Usage: ERROR <error_value> for explanation for the error_value
- ERROR /? for this screen, or
- ERROR for list of all standard DOS errors.
- endtext
- return
-
- :Start
- iff "%1" eq "" then
- list %@search[error.db]
- elseiff "%1" eq "/?" then
- gosub help
- quit
- else
- find " %1 " %@search[error.db]
- endiff
-